home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / com32 / lib / atexit.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-11-10  |  129 b   |  11 lines

  1. /*
  2.  * atexit.c
  3.  */
  4.  
  5. #include <stdlib.h>
  6.  
  7. int atexit(void (*fctn)(void))
  8. {
  9.   return on_exit((void (*)(int, void *))fctn, NULL);
  10. }
  11.